summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlat9nq <22451773+lat9nq@users.noreply.github.com>2023-07-25 21:57:55 +0200
committerlat9nq <22451773+lat9nq@users.noreply.github.com>2023-07-25 21:57:55 +0200
commit397333b2d51fc93c1285465f43668fb86e709fc3 (patch)
tree4e67317cbe69f0b9beda1fc86a86f30628f0c0b9
parentsettings: Set GPU as default ASTC decoder (diff)
downloadyuzu-397333b2d51fc93c1285465f43668fb86e709fc3.tar
yuzu-397333b2d51fc93c1285465f43668fb86e709fc3.tar.gz
yuzu-397333b2d51fc93c1285465f43668fb86e709fc3.tar.bz2
yuzu-397333b2d51fc93c1285465f43668fb86e709fc3.tar.lz
yuzu-397333b2d51fc93c1285465f43668fb86e709fc3.tar.xz
yuzu-397333b2d51fc93c1285465f43668fb86e709fc3.tar.zst
yuzu-397333b2d51fc93c1285465f43668fb86e709fc3.zip
-rw-r--r--src/common/settings.cpp3
-rw-r--r--src/common/settings_common.cpp3
2 files changed, 3 insertions, 3 deletions
diff --git a/src/common/settings.cpp b/src/common/settings.cpp
index 4a4ba307c..491adc30e 100644
--- a/src/common/settings.cpp
+++ b/src/common/settings.cpp
@@ -151,9 +151,6 @@ float Volume() {
return values.volume.GetValue() / static_cast<f32>(values.volume.GetDefault());
}
-Linkage::Linkage(u32 initial_count) : count{initial_count} {}
-Linkage::~Linkage() = default;
-
const char* TranslateCategory(Category category) {
switch (category) {
case Category::Audio:
diff --git a/src/common/settings_common.cpp b/src/common/settings_common.cpp
index 90842e797..dedf5ef90 100644
--- a/src/common/settings_common.cpp
+++ b/src/common/settings_common.cpp
@@ -52,4 +52,7 @@ const std::string& BasicSetting::GetLabel() const {
return label;
}
+Linkage::Linkage(u32 initial_count) : count{initial_count} {}
+Linkage::~Linkage() = default;
+
} // namespace Settings